home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / cli / powerdos.zoo / pdospipe / pipe.txt < prev   
Text File  |  1992-09-24  |  967b  |  45 lines

  1.  
  2.  
  3. PowerDOS PIPE.DEV TEXT
  4.  
  5.  
  6.  
  7. This program is FreeWare (C) 1992 PowerPoint Software
  8. (C) 1992 DragonWare Software Inc. ALL RIGHTS RESERVED
  9.  
  10.  
  11. Pipes are a way for multitasking proceses to exchange data.
  12.  
  13. To install the PowerDOS PIPE.DEV do the following.
  14.  
  15. Add a line to the end of your PowerDOS CONFIGUR file that states:
  16. #PIPE.DEV $BUFFERSIZE
  17.  
  18. BUFFERSIZE = the size of the pipe in 1/2 K bytes.
  19.  
  20. Then copy the PIPE.DEV file to your PowerDOS folder.
  21.  
  22. Reboot your system and Pipes will be installed.
  23.  
  24. Talking to a pipe:
  25.  
  26. To talk to a pipe you use it just like a file.
  27.  
  28. IE:
  29.  Open the file "PIPE:\TEST.PIP"
  30.  write to it.
  31.  close it.
  32. The other application can have the same file opened for read and get the 
  33. data from the pipe you wrote.
  34.  
  35. NOTE:
  36.      The pipe is a Circle file made in memory.  When you have filled the
  37.  file to its preset size (BUFFERSIZE*512 bytes) the Pipe will
  38.  overwrite the old data starting at byte 1.
  39.  
  40.  
  41.  
  42. END
  43.  
  44.  
  45.